home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / col_sbar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-10  |  510 b   |  18 lines

  1. #ifndef __COLOR_SCROLL_BAR_H_
  2. #define __COLOR_SCROLL_BAR_H_
  3.  
  4. #include "sbar.h"
  5.  
  6. class ColorScrollBar : public ScrollBar
  7.     {
  8.     public:
  9.         ColorScrollBar(loc pos, ORIENT type, int len,
  10.         int tot, int page_size, int cur = 0);
  11.         virtual void decrease();
  12.         virtual int get_screen_pos(int meter_len);
  13.         virtual void increase();
  14.         virtual void meter_show(loc m, int meter_len, ORIENT direction,
  15.             int p, int pattern);
  16.     };
  17.  
  18. #endif __COLOR_SCROLL_BAR_H_